637f0e1e94023600a7ee083de3c736d5e1400d9d,subprojects/core-impl/src/main/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java,Parser,managerStarted,#Attributes#String#,540
Before Change
}
protected void managerStarted(Attributes attributes, String managerAtt) {
String org = settings.substitute(attributes.getValue("org"));
org = org == null ? PatternMatcher.ANY_EXPRESSION : org;
String mod = settings.substitute(attributes.getValue("module"));
mod = mod == null ? PatternMatcher.ANY_EXPRESSION : mod;
ConflictManager cm;
After Change
}
private void managerStarted(Attributes attributes, String managerAtt) {
String org = elvis(substitute(attributes.getValue("org")), PatternMatcher.ANY_EXPRESSION);
String mod = elvis(substitute(attributes.getValue("module")), PatternMatcher.ANY_EXPRESSION);
String name = substitute(attributes.getValue(managerAtt));
String rev = substitute(attributes.getValue("rev"));